home *** CD-ROM | disk | FTP | other *** search
- /* Imports text from TLNG 2.0 to FinalWriter97 */
- /* FW97_Bold V1.0 © 10.08.99 by Jochen Grus */
-
- OPTIONS RESULTS
- ADDRESS "FINALW.1"
- Status FontPath
- fontpath = Result
- Status FontName
- fontname = Result
- pos = LASTPOS('_', fontname)
- IF (pos == 0) THEN
- DO
- fontpath = 'Normal'
- END
- ELSE DO
- pos = LASTPOS('_', fontpath)
- fontpath = 'Normal'
- END
- Style fontpath
- IF (pos == 0) THEN
- DO
- fontpath = 'Bold'
- END
- ELSE DO
- pos = LASTPOS('_', fontpath)
- fontpath = 'Bold'
- END
- Style fontpath
- Type " "
- Paste
- exit